Autor Thema: @min mit nummernliste  (Gelesen 1836 mal)

Offline Till_21

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 708
  • Geschlecht: Männlich
  • I love Germany
@min mit nummernliste
« am: 15.11.02 - 15:53:39 »
hi zusammen,

wie, *** *** ***, schaffe ich das minimum einer nummernliste rauszubekommen. es handelt sich um ein Default-Value. Desweiteren sind keine lookups erlaubt.

dankt euch,
till

ps: die @min-fnkt ist jawohl eine frechheit

Offline wflamme

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 690
  • Geschlecht: Männlich
  • Irgendwie geht das schon...
    • wflamme
Re:@min mit nummernliste
« Antwort #1 am: 15.11.02 - 16:42:29 »
Ja, muß man unbestritten zugeben. Auch daß in den Totals keine Min/Max-Funktionen unterstützt werden, hat mich schon bitter gefuchst.

Ev. hilft das?
Quelle Notes411 (glaube ich):

If your numeric list is an item called NumberList, the following formula will return its largest element:

tmpOnes:=@TextToNumber(@Explode(@Repeat("-1,";@Elements(NumberL ist))));
tmpA:=tmpOnes**NumberList;
tmpB:=NumberList**tmpOnes;
@TextToNumber(@Unique(@Trim(@Replace(@Text(NumberList);@Text(( @TextToNumber(@Unique(@Trim(@Replace(@Text(tmpA-@Max(tmpA;t mpB));"0";""))))*+NumberList));""))));

How does it work? OK. Here goes:

Suppose the list is 1, 3, 5.

We create two new lists (tmpA and tmpB) as follows:

tmpA tmpB
-1 -1
-3 -1
-5 -1
-1 -3
-3 -3
-5 -3
-1 -5
-3 -5
-5 -5

@Max these two lists to get a new list where each element is the greater of the two elements in tmpA, tmpB:

-1
-1
-1
-1
-3
-3
-1
-3
-5

Note that -5 (the smallest value) only occurs once. It can only be the greatest value when compared with itself. So, pairwise-subtract this list from tmpA:

0
-2
-4
0
0
-2
0
0
0

Convert to text, replace all the "0" with "", trim, make unique, and convert back to numbers. You are left with just -2 and -4.

Now, permute-add NumberList to this:

-1
-3
1
-1
-3
1

The last couple of steps have basically removed the greatest element.

Finally, convert this to text, replace the elements of number list that coincide with this list with a null. Trim, make unique, convert to a number and you are left with the greatest number in NumberList.


Grüße,
Wolfgang

"I love deadlines. I love the whooshing sound they make as they pass by..."
DOUGLAS ADAMS

wflamme@mainz-online.de
http://www.sns1.de/partner/flamme/wflamme.nsf

Offline Till_21

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 708
  • Geschlecht: Männlich
  • I love Germany
Re:@min mit nummernliste
« Antwort #2 am: 15.11.02 - 16:51:51 »
das nenn ich nen workaround :)

feine sache, dank dir, werds mal probieren.

gruss / till

Offline Rob Green

  • Freund des Hauses!
  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 2.651
  • Geschlecht: Männlich
    • Meipor
Re:@min mit nummernliste
« Antwort #3 am: 16.11.02 - 01:28:21 »
na da hat aber jemand echt die Gehirnmuckis spielen lassen..Baff bin..

Vielleicht verdirbt Geld wirklich den Charakter.
Auf keinen Fall aber macht Mangel an Geld ihn besser.
(John Steinbeck)

Meiporblog: http://www.meipor.de/blog
allg. Unternehmerblog: http://www.m-e-x.de/blog

Offline wflamme

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 690
  • Geschlecht: Männlich
  • Irgendwie geht das schon...
    • wflamme
Re:@min mit nummernliste
« Antwort #4 am: 16.11.02 - 04:15:29 »
Hier nochmal die Quelle, war nicht 411:

Return the greatest element in a number list
Type: Formula
Submitted By: Roberto Casula
For: Notes or Web version 4.x
Return the greatest element in a number list

http://freedomino.danieljweb.net/c0033.html
Grüße,
Wolfgang

"I love deadlines. I love the whooshing sound they make as they pass by..."
DOUGLAS ADAMS

wflamme@mainz-online.de
http://www.sns1.de/partner/flamme/wflamme.nsf

Offline harkpabst_meliantrop

  • Senior Mitglied
  • ****
  • Beiträge: 463
  • Geschlecht: Männlich
  • I love!
    • Heute schon gelebt?
Re:@min mit nummernliste
« Antwort #5 am: 16.11.02 - 16:59:19 »
Eine andere Lösung wäre natürlich, einfach R6 zu verwenden ...  ;D

Aber da wir hier im R5 Entwicklungsforum sind, sollte ich mir das breite Grinsen wohl lieber verkneifen, und lieber ehrfürchtig auf das Formelungeheuer starren (ich liebe solche Listen-Hacks, ganz im Ernst). ;)

Offline wflamme

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 690
  • Geschlecht: Männlich
  • Irgendwie geht das schon...
    • wflamme
Re:@min mit nummernliste
« Antwort #6 am: 16.11.02 - 21:44:34 »
Das sind solche Informatik(er)-Lösungen.... nein, meine ich ganz im Ernst.
Grüße,
Wolfgang

"I love deadlines. I love the whooshing sound they make as they pass by..."
DOUGLAS ADAMS

wflamme@mainz-online.de
http://www.sns1.de/partner/flamme/wflamme.nsf

Offline ata

  • Moderator
  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 5.092
  • Geschlecht: Männlich
  • drenaiondrufflos
    • Anton Tauscher Privat
Re:@min mit nummernliste
« Antwort #7 am: 17.11.02 - 13:02:57 »
... Hut ab...

... manchmal ist es besser hinzunehmen das etwas funktioniert, ohne zu wissen warum...

ata
Grüßle Toni :)

 

Impressum Atnotes.de  -  Powered by Syslords Solutions  -  Datenschutz